Kinja'd!!! "Tim (Fractal Footwork)" (fractalfootwork)
03/16/2016 at 21:53 • Filed to: None

Kinja'd!!!0 Kinja'd!!! 1

!!! UNKNOWN CONTENT TYPE !!!

*That’s a red F1 car in the Apple-verse. Looks like twitter doesn’t like my jokes.


DISCUSSION (1)


Kinja'd!!! facw > Tim (Fractal Footwork)
03/17/2016 at 00:59

Kinja'd!!!0

Plenty of languages will let you have Unicode variable names. Visual Studio’s support caused me big problems long ago.  is probably not the best variable name, but support for non-English speaking coders to be able to write in their own language is important (right to left languages are especially fun).

This will compile and run just fine in VC++:

#include “stdafx.h”
#include

using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
char *  = “Because racecar”;
cout <<  < return 0;
}